home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / ip / ka9q / aztecnos.arc / FTP.H < prev    next >
Encoding:
C/C++ Source or Header  |  1989-02-21  |  360 b   |  19 lines

  1. /* Definitions common to both FTP servers and clients */
  2.  
  3. #ifndef    ASCII_TYPE
  4.  
  5. #define    ASCII_TYPE    0
  6. #define    IMAGE_TYPE    1
  7. #define    LOGICAL_TYPE    2
  8.  
  9. #if    defined(__STDC__) || defined(__TURBOC__)
  10. long sendfile(FILE *fp,int s,int mode);
  11. long recvfile(FILE *fp,int s,int mode);
  12. #else
  13. long sendfile();
  14. long recvfile();
  15. #endif
  16.  
  17. #endif    /* ASCII_TYPE */
  18.  
  19.